home *** CD-ROM | disk | FTP | other *** search
/ So Who's Dr. Rabbit? / SWDR_1.iso / pc / swdrmov / manager.dxr / manager Scripts Int_24.ls < prev    next >
Encoding:
Text File  |  1997-07-28  |  421 b   |  13 lines

  1. global gFSnameHilited, gMovieButtons, gProgramSettings
  2.  
  3. on mouseUp
  4.   set count to CountStudents(GetCurClassList(gProgramSettings))
  5.   if (the mouseLine >= 1) and (the mouseLine <= count) then
  6.     set gFSnameHilited to the mouseLine
  7.     set theField to the mouseCast
  8.     hilite line gFSnameHilited of field theField
  9.     SetState(getAt(gMovieButtons, 7), #normal)
  10.     SetState(getAt(gMovieButtons, 8), #normal)
  11.   end if
  12. end
  13.